GetBool(IPdfDict,PdfName,Nullable<Boolean>) Method
In This Topic
Gets the nullable Boolean value associated with the specified key. If the value does not exist or cannot be converted to a Boolean, returns (which can be null).
Syntax
'Declaration
Public Overloads Shared Function GetBool( _
ByVal As IPdfDict, _
ByVal As PdfName, _
ByVal As System.Nullable(Of Boolean) _
) As System.Nullable(Of Boolean)
public static System.Nullable<bool> GetBool(
IPdfDict ,
PdfName ,
System.Nullable<bool>
)
Parameters
- dict
- The current dictionary.
- key
- The key identifying the value.
- defValue
- The default value.
Return Value
The value associated with the specified key, or null.
See Also